linked-list - определение. Что такое linked-list
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое linked-list - определение

DATA STRUCTURE WHICH IS A LINEAR COLLECTION OF DATA ELEMENTS, CALLED NODES, EACH POINTING TO THE NEXT NODE BY MEANS OF A POINTER
Linked lists; Singly linked list; Circularly linked list; Singly-linked list; Linked List; Two-way list; Two-way linked list; Symmetrically linked list; Circular list; LinkedList; Tail sharing; Tail-sharing; Linked List in Pascal; Dynamic list; Circular linked list
  • Diagram of inserting a node into a singly linked list
  • Diagram of deleting a node from a singly linked list
  • A linked list is a sequence of nodes that contain two fields: an integer value and a link to the next node. The last node is linked to a terminator used to signify the end of the list.
Найдено результатов: 58898
linked list         
<programming> A data structure in which each element contains a pointer to the next element, thus forming a linear list. A doubly linked list contains pointers to both the next and previous elements. (1995-03-28)
Linked list         
In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next.
doubly linked list         
LINKED LIST IN WHICH EACH NODE REFERENCES BOTH ITS SUCCESSOR AND ITS PREDECESSOR
Double linked list; Doubly-linked list
<programming> A data structure in which each element contains pointers to the next and previous elements in the list, thus forming a bidirectional linear list. (1995-03-28)
Doubly linked list         
LINKED LIST IN WHICH EACH NODE REFERENCES BOTH ITS SUCCESSOR AND ITS PREDECESSOR
Double linked list; Doubly-linked list
In computer science, a doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains three fields: two link fields (references to the previous and to the next node in the sequence of nodes) and one data field.
Doubly linked face list         
Doubly Linked Face List
In applied mathematics, a doubly linked face list (DLFL) is an efficient data structure for storing 2-manifold mesh data. The structure stores linked lists for a 3D mesh's faces, edges, vertices, and corners.
XOR linked list         
VARIANT OF THE DOUBLY LINKED LIST DATA STRUCTURE USED IN COMPUTER PROGRAMMING
Xor linked list; XOR edge; Xor edge; Subtraction edge; XOR linking; Subtraction linked list; XOR list
An XOR linked list is a type of data structure used in computer programming. It takes advantage of the bitwise XOR operation to decrease storage requirements for doubly linked lists.
Non-blocking linked list         
  • a}}, causing the insertion to be undone.
Lock-free linked list; Non-blocking link-list
A non-blocking linked list is an example of non-blocking data structures designed to implement a linked list in shared memory using synchronization primitives:
The Linked Ring         
  • J.B.B. Wellington]]
ASSOCIATION OF ENGLISH PHOTOGRAPHERS
Linked Ring; Brotherhood of the Linked Ring; Linked Ring Brotherhood
The Linked Ring (also known as "The Brotherhood of the Linked Ring") was a British photographic society created to propose and defend that photography was just as much an art as it was a science, motivated to propelling photography further into the fine art world. Members dedicated to the craft looked for new techniques that would cause the less knowledgeable to steer away, persuading photographers and enthusiasts to experiment with chemical processes, printing techniques and new styles.
X-linked dominant inheritance         
MODE OF INHERITANCE
X-linked dominance; X-linked dominant
X-linked dominant inheritance, sometimes referred to as X-linked dominance, is a mode of genetic inheritance by which a dominant gene is carried on the X chromosome. As an inheritance pattern, it is less common than the X-linked recessive type.
List of culturally linked qualities of music         
WIKIMEDIA LIST ARTICLE
User:TUF-KAT/saudade; List of aesthetic principles of music; List of culturally-linked qualities of music
This is a list of aesthetic principles of music. It enumerates the various qualities by which music is judged aesthetically.

Википедия

Linked list

In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence. In its most basic form, each node contains: data, and a reference (in other words, a link) to the next node in the sequence. This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration. More complex variants add additional links, allowing more efficient insertion or removal of nodes at arbitrary positions. A drawback of linked lists is that access time is linear (and difficult to pipeline). Faster access, such as random access, is not feasible. Arrays have better cache locality compared to linked lists.

Linked lists are among the simplest and most common data structures. They can be used to implement several other common abstract data types, including lists, stacks, queues, associative arrays, and S-expressions, though it is not uncommon to implement those data structures directly without using a linked list as the basis.

The principal benefit of a linked list over a conventional array is that the list elements can be easily inserted or removed without reallocation or reorganization of the entire structure because the data items do not need to be stored contiguously in memory or on disk, while restructuring an array at run-time is a much more expensive operation. Linked lists allow insertion and removal of nodes at any point in the list, and allow doing so with a constant number of operations by keeping the link previous to the link being added or removed in memory during list traversal.

On the other hand, since simple linked lists by themselves do not allow random access to the data or any form of efficient indexing, many basic operations—such as obtaining the last node of the list, finding a node that contains a given datum, or locating the place where a new node should be inserted—may require iterating through most or all of the list elements.